- 2011 - A trip through the Graphics Pipeline 2011
- 2015 - Life of a triangle - NVIDIA's logical pipeline
- 2015 - Render Hell 2.0
- 2016 - How bad are small triangles on GPU and why?
- 2017 - GPU Performance for Game Artists
- 2019 - Understanding the anatomy of GPUs using Pokémon
- 2020 - GPU ARCHITECTURE RESOURCES
Discover gists
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class RedshiftString | |
# Redshift supports UTF-8 but it enforces stricter rule than other | |
# implementations such as MySQL or Ruby. This method returns a | |
# Redshift-safe string from the given string. | |
def self.encode(string, options = {}) | |
result = string.encoding == Encoding::UTF_8 ? string.encode(Encoding::UTF_16, options).encode(Encoding::UTF_8) : string.encode(Encoding::UTF_8, options) | |
result.each_char.collect{|c| | |
# Per Redshift document | |
# http://docs.aws.amazon.com/redshift/latest/dg/multi-byte-character-load-errors.html | |
if c >= "\uFDD0" && c <= "\uFDEF" || c == "\uFFFE" || c == "\uFFFF" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="width=device-width;height=device-height; user-scalable=no" /> | |
<meta http-equiv="Content-type" content="text/html;charset=utf-8"> | |
<title>PhoneGap Reverse Geolocation Lookup</title> | |
<script type="text/javascript" src="cordova-1.7.0.js"></script> | |
<script type="text/javascript" src="jquery-1.7.2.min.js"></script> | |
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=true"></script> | |
When mixing the tracks, we need to consider that they might (and probably have) started at different times. If we were to merge tracks without taking this into account, we would end up with synchronization issues. In our example, since Bob got in the room a good 20s (and that’s really a huge time for synchronization of audios), mixing both Alice’s and Bob’s audio tracks together would end up having one speaking over the other.
To make merging easier, the start time of all tracks from the same room is the creation of the room itself. Let’s get the start times for all the tracks from this room
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs'); | |
const { exec, execSync } = require('child_process'); | |
const getStartTime = (fileName) => { | |
const ffprobeOutput = execSync(`ffprobe -v quiet -print_format json -show_entries format=start_time ${fileName}`).toString(); | |
const ffprobeJSON = JSON.parse(ffprobeOutput); | |
return parseFloat(ffprobeJSON.format.start_time) * 1000; | |
}; | |
const mixAudioTracks = (audioFiles) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You are Manus, an AI agent created by the Manus team. | |
You excel at the following tasks: | |
1. Information gathering, fact-checking, and documentation | |
2. Data processing, analysis, and visualization | |
3. Writing multi-chapter articles and in-depth research reports | |
4. Creating websites, applications, and tools | |
5. Using programming to solve various problems beyond development | |
6. Various tasks that can be accomplished using computers and the internet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import phonenumbers | |
from phonenumbers import geocoder | |
phone_number1 = phonenumbers.parse("+917294536271") | |
phone_number2 = phonenumbers.parse("+2347045661084") | |
print("\nPhone Numbers Location\n") | |
print(geocoder.description_for_number(phone_number1,"en")) | |
print(geocoder.description_for_number(phone_number2,"en")) |
By u/angkitbharadwaj
Visit fmhy.net/android-iosguide#ios-ipas for more sources.
NewerOlder